Creates a list of checkbox options for the user to select with a click of the mouse.
Example:
<FORM>
<INPUT TYPE=checkbox NAME="cat" VALUE="Y" CHECKED>Cat
<BR>
<INPUT TYPE=checkbox NAME="dog" VALUE="Y" CHECKED>Dog
<BR>
<INPUT TYPE=checkbox NAME="horse" VALUE="Y">Horse
</FORM>
VALUE: stores what will be returned in the variable when the box
is checked
T10D024