    var target = "blank";
    function MyJump(){
      var url = document.form.select.options[document.form.select.selectedIndex].value;
      if(url != "" ){
        if(target == "blank"){
          window.open(url, "window_name");
        }

        else{
        location.href = url;
        }
      }
    }
