Queste le select:
codice:
<select name="video" onChange="deselectothers(this)">
<option value=""></option>
<option value="Attori">Attori</option>
<option value="Operatori video">Operatori video</option>
</select>
<select name="grafica" onChange="deselectothers(this)">
<option value=""></option>
<option value="Fotografi">Fotografi</option>
</select>
<select name="scenografia" onChange="deselectothers(this)">
<option value=""></option>
<option value="Allestitori">Allestitori</option>
<option value="Arredatori">Arredatori</option>
</select>
Questa la funzione chiamata:
codice:
function deselectothers(myselect) {
var d=document.getElementsByTagName('select');
for(var i=0; i<d.length; i++) {
if (d[i].name != myselect) {
d[i].selectedIndex = 0;
}
}
}