QUOTE(dougmanic @ Oct 9 2006, 11:13 PM)

First you want to close all your option tags:
CODE
<option>Dog</option>
<option>Bird</option>
Second, on your line with the submit button, change the onclick attribute to:
CODE
... onClick="window.open('http://www.seat9k.com/' + Animal.value + Color.value + '.html')">.....
It should work, if you have 6 different pages for each of the 6 combinations.
I updated the site based on your recommendations, and unfortunately it didn't work. It made sense, though!
The code I now have is:
<form method=post action="http://www.seat9k.com/" name="animalcolors">
<table bgcolor="#FFFF66" border=5 cellspacing=5 cellpadding=5 align=left width=33.3%>
<tr valign=top><td colspan=2 align=center>Region Charts</td></tr>
<tr>
<td align=right width=50%>Animal:</td>
<td width=50%>
<select name=Animal id="option1" size=1>
<option>Dog</option>
<option>Cat</option>
<option>Bird</option>
</select></td></tr>
<tr>
<td align=right>Color:</td>
<td>
<select name=Color id="option2" size=1>
<option>Red</option>
<option>Green</option>
<option>Yellow</option>
</select></td></tr>
<tr valign=top><td colspan=2 align=center>
<input type=button value="Submit"
onClick="window.open('http://www.seat9k.com/'+Animal.value+Color.value+'.html')">
</td></tr>
</table>
</form>