function leapto(form) {
        var myindex=form.dest.selectedIndex ;
                if (form.dest.options[myindex].value != "nope")
                {
          top.location=(form.dest.options[myindex].value) ;
                } else {
                  alert("Please make a valid selection.");
                }
}

