<script type="text/javascript">
<!--
function go()
{
if (document.form.test.selectedIndex == 0)
{
var = 0; // Oder wie auch immer
}
if (document.form.test.selectedIndex == 1)
{
var = 1; // Oder wie auch immer
}
if (document.form.test.selectedIndex == 2)
{
var = 1; // Oder wie auch immer
}
}
-->
</SCRIPT>
<FORM NAME="form">
<SELECT NAME="test" onChange="go()">
<OPTION NAME="hallo" VALUE="test1">Hallo
<OPTION NAME="hallo" VALUE="test2">Hallo
</SELECT>
</FORM>
So müsste es eigentlich gehen.
RudiS