Ok this is not really HTML but basically what I am trying to do is I have two drop down boxes with about 10 options in each then just a submit button basically what I want to do is have it so that when someone makes a selection from each of the drop down boxes it and click the submit it will display a certain page depending on the selection can anyone help with this.





for thoose of you who need this solution I found it,
this is the code
Description: Sends the user to a specific URL based on the combined selections from two different pulldown menus. If the user only selects from one menu, they are still taken to that menu's corresponding page. Works great for sites navigation based on two seperate characteristics.
<!-- STEP ONE: Paste this code into the HEAD of your HTML document --><head>
<script type="text/javascript">
<!-- Original: Ronnie T. Moore, Editor -->
<!-- Idea by: Selvi Narayanan -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
site = "http://www.yoursite.com"; // Do not include the final "/"
function combineMenus(frm, menu1, menu2) {
with (frm) {
str = menu1.options[menu1.selectedIndex].value;
str += menu2.options[menu2.selectedIndex].value;
url = site + "/" + str + ".html";
window.location.href = url;
}
}
// End -->
</script>
</head>
--------------------------------------------------------------------------------
<!-- STEP TWO: Copy this code into the BODY of your HTML document -->
<body>
<div align="center">
<form name="menufrm" action="#">
<select name="menu1">
<option value="">Make</option>
<option value="Ford">Ford</option>
<option value="Chevy">Chevy</option>
<option value="Toyota">Toyota</option>
</select>
<select name="menu2">
<option value="">Year</option>
<option value="1998">1998</option>
<option value="1999">1999</option>
<option value="2000">2000</option>
</select>
<input type="button" value="Select" onClick="combineMenus(this.form, this.form.menu1, this.form.menu2)">
</form>
</div>
</body>
______________________________________
Thats so plausible its unbelievable