function goto(choose){
var selected=choose.options[choose.selectedIndex].value;
    if(selected != ""){
    	location.href=selected;
    }
}
