Ebenfalls DANKE!
Ja klar, jetzt wo du's sagst . . .
Ich dachte zunaechst an eine Javascript-Loesung . . . und da habe ich leider einige Bildungsluecken aufzuweisen . . .
Also ich fasse einmal eine gut funktionierende Version zusammen:
Code:
<form action='' method='get'>
<div style='position:relative;'>
<input id='combo1' type='text' style='width:150px' /><span onclick=\"document.getElementById('combo1_options').style.display='block'\" style='cursor:pointer'>V</span>
<div id='combo1_options' style='display:none; width:150px; padding:5px; border:1px solid black; overflow:auto; position:absolute; top:20px; left:0px; background:#669966;'>
<span onclick=\"document.getElementById('combo1').value='auswahl 1';document.getElementById('combo1_options').style.display='none'\" style=\"cursor:pointer\">auswahl 1</span>
<span onclick=\"document.getElementById('combo1').value='auswahl 2';document.getElementById('combo1_options').style.display='none'\" style=\"cursor:pointer\">auswahl 2</span>
<span onclick=\"document.getElementById('combo1').value='auswahl 3';document.getElementById('combo1_options').style.display='none'\" style=\"cursor:pointer\">auswahl 3</span>
<span onclick=\"document.getElementById('combo1').value='auswahl 4';document.getElementById('combo1_options').style.display='none'\" style=\"cursor:pointer\">auswahl 4</span>
</div>
</div>
</form>
lg
ff