
function jumpBox(list) {

    var listvalue = list.options[list.selectedIndex].value;


    if (listvalue != "Not") {

        
        window.location.href = list.options[list.selectedIndex].value;
    }
    else {
        alert("Please select from the list");
        return false;
    }

} 
