welcomewiki has just posted in the HTML Forum forum of Wiki Newforum under the title of HTML Forms and Input.
This thread is located at http://www.wikinewforum.com/showthread.php?t=5784
Here is the message that has just been posted:
***************
_*Another drop down box
This example demonstrates how to create a simple drop-down box with a pre-selected value
*_
<html>
<body>
<form action="">
<select name="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="fiat" selected="selected">Fiat</option>
<option value="audi">Audi</option>
</select>
</form>
</body>
</html>
***************