
function jumpBoxAu(list) {

    var listvalue = list.options[list.selectedIndex].value;


    if (listvalue != "Not") {

        document.formlistAu.submit;
        window.location.href = list.options[list.selectedIndex].value;
    }
    else {
        alert("Please select from the list");
        return false;
    }

}

function jumpBoxNZ(list) {

    var listvalue = list.options[list.selectedIndex].value;


    if (listvalue != "Not") {

        document.formlistNZ.submit;
        window.location.href = list.options[list.selectedIndex].value;
    }
    else {
        alert("Please select from the list");
        return false;
    }

}

function jumpBoxPN(list) {

    var listvalue = list.options[list.selectedIndex].value;


    if (listvalue != "Not") {

        document.formlistPN.submit;
        window.location.href = list.options[list.selectedIndex].value;
    }
    else {
        alert("Please select from the list");
        return false;
    }

} 
