Hi,
if(document.form.betreff.selectedIndex.value == "1")
Du ueberpruefst Uebereinstimmung mit dem _String_ "1". Teste aber das mal:
<html><head></head>
<body marginheight="0" marginwidth="0">
<form Name="dpl">
<select name="sel" onchange="alert('Wert ist vom Typ: ' + typeof(this.selectedIndex))">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</form>
</body></html>
Gruesse Joachim