Supports HTML 4.0 SELECT tag attributes and populates the drop-down list box with data from queries or a hashtable.

<jrun:select name=”name” [size=”1|integer”]
	hashtable=”java.util.Dictionary|Map”
	[required=”true|false”] [selected=”value”]
	[onError=”javascript function name”]
	other HTML 4.0 select attributes>
...optional html <option> tags...
</jrun:select>
or
<jrun:select name=”name” [size=”1|integer”]
	query=”query result” value=”value column”
	[display=”display column”]
	[required=”true|false”] [selected=”value”]
	[onError=”javascript function name”]
	other HTML 4.0 select attributes>
...optional html <option> tags...
</jrun:select>