<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "[URL unfurl="true"]http://www.w3.org/TR/html4/strict.dtd">[/URL]
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<title></title>
<style type="text/css">
div#fromdiv,div#todiv,
div#ladiv,div#aadiv,div#sctdiv,div#tsdiv {
display: none;
}
</style>
<script type="text/javascript">
function ch(what)
{
document.getElementById('fromdiv').style.display=what.value=='from'?'block':'none'
document.getElementById('todiv').style.display=what.value=='to'?'block':'none'
}
function ch2(what)
{
var divlist=new Array('la','aa','sct','ts')
if (what.selectedIndex==5) {
location.href='[URL unfurl="true"]http://google.com/search?q=Heathrow'[/URL]
return
}
for (var i=0;i<divlist.length;i++)
document.getElementById(divlist[i]+'div').style.display=what.selectedIndex==i+1?'block':'none'
}
</script>
</head>
<body>
<form action="#">
<p>
<input type="radio" name="direction" value="from" onclick="ch(this)"> From Heathrow<br>
<input type="radio" name="direction" value="to" onclick="ch(this)"> To Heathrow<br>
</p>
<div id="fromdiv">
Transfer to:<br>
<select name="fromlist" id="fromlist" onchange="ch2(this)">
<option>-</option>
<option>London Area</option>
<option>Another Airport</option>
<option>Seaport/Cruise Terminal</option>
<option>Train Station</option>
<option>Outside London</option>
</select>
</div>
<div id="todiv">
Pickup from:<br>
<select name="tolist" id="tolist" onchange="ch2(this)">
<option>-</option>
<option>London Area</option>
<option>Another Airport</option>
<option>Seaport/Cruise Terminal</option>
<option>Train Station</option>
<option>Outside London</option>
</select>
</div>
<div id="ladiv">
London Area:<br>
<select name="lalist" id="lalist">
<option>London Area Value</option>
</select>
</div>
<div id="aadiv">
Another Airport:<br>
<select name="aalist" id="aalist">
<option>Another Airport Value</option>
</select>
</div>
<div id="sctdiv">
Seaport/Cruise Terminal:<br>
<select name="sctlist" id="sctlist">
<option>Seaport/Cruise Terminal Value</option>
</select>
</div>
<div id="tsdiv">
Train Station:<br>
<select name="tslist" id="tslist">
<option>Train Station Value</option>
</select>
</div>
</form>
</body>
</html>