
function dropdown(sel, text){ 
  c = confirm(text); 
  
  if(c) {
    sel.form.submit();
  }
  else {
    sel.selectedIndex = 0;
  }
    
} 
