I'm working on a basic webage and trying to have multiple select options that change once you choose the first option and then it would lead to different option to select from the second time. and once this is selected the third option relies on the what the user choose for the second tab then it would take it to a website. Here is how far i got. I need help thanks
<html>
<head>
<TITLE>Environment Reference</title>
</head>
<body >
<center><font color="blue" size="22"><b>Environment Reference</b></font></center><hr>
<!--options for different envirnoments-->
<select name="envirnoment">
<option>develop</option>
<option>test</option>
<option>PROduce</option>
</select>
<!--choosing the service for the envirnoment-->
<select name="service" >
<option>service</option>
<option>HOST service</option>
</select>
<!--choosing the destnation domain-->
<select name="domain">
<option>1 </option>
<option>2</option>
<option>3</option>
<option>4 </option>
<!--creates the go button to proceed-->
<form action="">
<input type="button" value="GO">
</form>
</select>