function link(select) {
var x = select.options[select.options.selectedIndex].value;
 if(x == "blank") { 
   select.form.reset(); 
   return; 
 } 
 else { 
   document.location.href = x; 
   select.form.reset(); 
 } 
} 