Creating a table to contain the applets
The following HTML code creates a table to contain the applets, drop-down box, and Submit Query button. The top table row holds a drop-down selection box and Submit Query button. The other has two cells that will contain each applet.

<CENTER>
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=755">

<TR ALIGN=center>
	<TD></TD>
	<TD>
	<FORM>
				Select a state:
		<SELECT NAME="state">
			<OPTION VALUE="Alabama">Alabama
			<OPTION VALUE="Alaska">Alaska
			<OPTION VALUE="Arizona">Arizona
			<OPTION VALUE="Arkansas">Arkansas
			<OPTION VALUE="California">California
			<OPTION VALUE="Colorado">Colorado
			<OPTION VALUE="Connecticut">Connecticut
			<OPTION VALUE="Delaware">Delaware
			<OPTION VALUE="Florida">Florida
			<OPTION VALUE="Georgia">Georgia
			<OPTION VALUE="Hawaii">Hawaii
			<OPTION VALUE="Iowa">Iowa

<!-- ......and the rest of the states-->

</SELECT>   <INPUT TYPE=button VALUE="Submit Query" ONCLICK="run_query();"> </FORM> </TD>

</TR>
<TR ALIGN=center>
	<TD>
	</TD>
	<TD>
	</TD>
</TR>

</TABLE>
</CENTER>