Hallo,
Fuer select-boxes benoetigst Du eine andere Herangehensweise -
es muss mit selectedIndex abgefragt werden welche Option gewaehlt worden ist, dann kannst Du den Wert dieser Option pruefen.
if (document.theForm.SelectName.options[document.theForm.SelectName.selectedIndex].value == ""){}
Wenn nur die erste Option leer ist, langt es auch so:
if (document.theForm.SelectName.selectedIndex == 0) {}
Gruss, Mel