Hi.
Füge beiden Selects noch ein onChange hinzu, welches die Auswahl des jeweils anderen Selects auf einen hoffentlich vorhandenen Standardwert (z.B. "Bitte auswählen") setzt.
z.B
<form name="formular" method="post">
<select name="select1" onChange="document.forms.formular.select2.selectedIndex=0">
<option value="">Bitte auswählen</option>
<option value="auswahl 1">Auswahl 1</option>
<option value="auswahl 2">Auswahl 2</option>
<option value="auswahl 3">Auswahl 3</option>
</select>
<select name="select2"onChange="document.forms.formular.select1.selectedIndex=0">
<option value="">Bitte auswählen</option>
<option value="auswahl 1">Auswahl 1</option>
<option value="auswahl 2">Auswahl 2</option>
<option value="auswahl 3">Auswahl 3</option>
</select>
</form>
mfg
Knusperklumpen
P.S. Was ist die Sinnhaftigkeit?