You are trying to set the location like this:
[code:1:202bc874e8]location=document.form1.menu.options[document.form 1.menu.selectedIndex].value[/code:1:202bc874e8]
But you don't have a form named "form1". Here's the modified code. I've just added a form for you.
[code:1:202bc874e8]
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Brentwood Childcare</title>
</head>
<body bgcolor="#003300">
<div align="center">
<center>
<table border="0" cellspacing="1" width="70%" id="AutoNumber1" bgcolor="#003300" background="images/feetNhands.jpg">
<tr>
<td width="100%">
<div align="center">
<center>
<table border="0" cellspacing="1" width="100%" id="AutoNumber2">
<tr>
<td width="56%">
<div align="center">
<center>
<table border="0" cellspacing="1" width="92%" id="AutoNumber3">
<tr>
<td width="49%" align="center">
<script>
Now = new Date();
if (Now.getHours()>17)
{
document.write('<B>Good evening</B>');
}
else if (Now.getHours()>12)
{
document.write('<B>Good afternoon</B>');
}
else
{
document.write('<B>Good morning</B>');
}
</script>
</td>
</tr>
</table>
</center>
</div>
</td>
<td width="44%">
<p align="right">
<form name="form1">
<select style="font-size:12px;color:#006699;font-family:verdana;background-color:#ffffff;" name="menu">
<option value="index.htm">Home</option>
<option value="index1.htm">About Brentwood</option>
<option value="index2.htm">Our Location</option>
<option value="index3.htm">Newsletter</option>
<option value="index4.htm">Menu</option>
<option value="index5.htm">Pictures</option>
<option value="index6.htm">Upcoming Events</option>
<option value="index7.htm">MeettheStaff</option>
<option value="index8.htm">Policies</option>
<option value="index9.htm">Services</option>
<option value="index10.htm">Rates</option>
<option value="index11.htm">Licensed/vs.Unlicensed</option>
<option value="index12.htm">Contact</option>
<option value="
www.brentwoodchildcare.net/index13.html">Special
Offers</option>
<option value="index14.htm">Links</option>
</select>
<input style="font-size:12px;color:#ffffff;font-family:verdana;background-color:#006699;" type="button" onClick="location=document.form1.menu.options[docu ment.form1.menu.selectedIndex].value;" value="click here"></td>
</form>
</tr>
</table>
</center>
</div>
</td>
</tr>
<tr>
<td width="100%">
<p align="center">
<img border="0" src="images/Logo1copy.gif" width="464" height="373"></td>
</tr>
<tr>
<td width="100%">
<p align="center"><font color="#800000" size="4">Site is currently under
reconstruction.<br>
<a href="mailto:docquesting@yahoo.com">E-mail Webmaster.</a></font></td>
</tr>
</table>
</center>
</div>
</body>
</html>
[/code:1:202bc874e8]