// select1 - a select list

// load 'choice' if given..
#cgivar choice

#set TITLE = "select1"
#include top

<center>
<br>

<table cellpadding=2><tr bgcolor=FFFFFF><td>

<form action="@CGIPROG" method=GET>
#formtarget select1_capture

<select name=choice size=1>
#optionlist selected=@choice
#options
   #if @choice = ""
     ""    -- choose 1 --
   #endif
   A	choice A
   B	choice B
   C	choice C
   D	choice D
   E	choice E
</select>
&nbsp;
<input type=submit value="Go">
</form>

</td></tr>
</table>

