Hi there jim255,
your HTML snippet is incorrect and poor coding.

The
font element is deprecated and does not belong to this century.
Also note that you should avoid spaces in file names, so use
about_us.html or
aboutUs.html instead of
about us.html.
Taking all this on board, your code should look something like this...
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="language" content="english">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<title></title>
<style type="text/css">
ul a {
font-family:'trebuchet ms',sans-serif;
font-size:13px;
}
</style>
<script type="text/javascript">
function goThere(){
sel=document.forms[0].getElementsByTagName('select');
for(c=0;c<sel.length;c++) {
sel[c].onchange=function() {
if(this.value!='') {
location.href=this.value;
}
}
}
}
if(window.addEventListener){
window.addEventListener('load',goThere,false);
}
else {
if(window.attachEvent){
window.attachEvent('onload',goThere);
}
}
</script>
</head>
<body>
<ul>
<li><a href="http://www.michaellynchlogistics.co.uk/contact.html">Contact us</a></li>
<li><a href="http://www.michaellynchlogistics.co.uk/services.html">Services</a></li>
<li><a href="http://www.michaellynchlogistics.co.uk/about_us.html">About us</a></li>
</ul>
<form action="#">
<div>
<select>
<option value="">---options---</option>
<option value="http://www.google.com">Front</option>
<option value="page2.html">Middle</option>
<option value="page3.html">Last</option>
</select>
<select>
<option value="">---options---</option>
<option value="http://www.yahoo.com">yahoo</option>
<option value="http://www.htmlforums.com">HTML Forums</option>
<option value="http://www.bbc.co.uk">The BBC</option>
</select>
</div>
</form>
</body>
</html>