prova così:
da usare 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; } }
ciaocodice:<select name="sel1" onchange="selectIt(this.options[this.selectedIndex].value);">