hallo,
versuch mal das:
<script>
function auswaehlen(){
document.form1.text.value = "";
for(i=0;i<document.form1.auswahl.options.length;i++){
if(document.form1.auswahl.options[i].selected){
document.form1.text.value += document.form1.auswahl.options[i].value+"\n";
}
}
}
</script>
<form name="form1">
<textarea name="text" rows=3></textarea>
<select name="auswahl" size="3" onChange="auswaehlen();" multiple>
<option value="Age Of Empire">AOE
<option value="Counterstrike">CS
<option value="Diablo2">Diablo
</select>
</form>
gruß
Thanks Super ... und ich doktere daran schon ewig rum aber die options Variante bin ich nicht gekommen.
Klar das muß gehen. Werds gleich mal testen.
hartmann