// select2 - a select list

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

#set TITLE = "select2"
#include top

<center>
<br>

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

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

Multiple choice:<br>
<select name=choices size=7 multiple>
#optionlist selected=@choices
#options
   A	choice A
   B	choice B
   C	choice C
   D	choice D
   E	choice E
   F	choice F
   G	choice G
</select>
&nbsp;
<input type=submit value="Go">
</form>

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

