prova così:

codice:
function selectIt(valore) {
 var s=document.nomeform.sel2;
 for (var i=0; i<s.options.length; i++)
  if (valore==s.options[i].text) {
   s.selectedIndex=i;
   return;
  }
}
da usare così:

codice:
<select name="sel1" onchange="selectIt(this.options[this.selectedIndex].value);">
ciao