function selectOpt() {
	var selected = document.frmHouseKeeping1.optHouseKeeping.options[document.frmHouseKeeping1.optHouseKeeping.selectedIndex].value;

	if (selected != "selectMe") {
		location.href = selected;
	} 
}

document.write(''+
'<table border="0" cellspacing="0" cellpadding="0">'+
'	<tr>'+
'		<td>'+
'			<form name="frmHouseKeeping1" method=post action="">'+
'				<select name="optHouseKeeping" onchange="javascript:selectOpt()">  '+
'					<option value="selectMe">Select an Option from HouseKeeping</option>'+
'					<option value="selectMe">Child safety. . .</option>'+
'					<option value="hkeep_homesafe_sea.htm">...How to make your home safe for your kids</option>'+
'					<option value="hkeep_keepingkids_sea.htm">...Kids saftey when alone at home</option>'+
'					<option value="hkeep_parents_sea.htm">...Parents to consider questions when kids alone at home</option>'+
'					<option value="hkeep_lend_sea.htm">...Lend emotional support to your child</option> '+
'					<option value="selectMe">	Fire prevention. . .</option>'+
'					<option value="hkeep_firehazard_sea.htm">...Common fire hazard places and preventive actions</option>'+
'					<option value="hkeep_10steps_sea.htm">...10 steps to learning fire prevention</option>'+
'					<option value="selectMe">	Hygiene. . .</option>'+
'					<option value="hkeep_safety_sea.htm">...Safety of your baby</option>'+
'					<option value="hkeep_playrooms_sea.htm">...Germ protection in play rooms</option>'+
'					<option value="hkeep_kitchen_sea.htm">...Germ protection in the kitchen</option>'+
'					<option value="hkeep_misc_sea.htm">...Miscellaneous</option>'+
'					<option value="selectMe">	Training & awareness. . .</option>'+
'					<option value="hkeep_rules_sea.htm">...Rules your children should follow when alone at home</option>'+
'					<option value="hkeep_rules1_sea.htm">...Rules your children should follow regarding hygiene</option>'+
'					<option value="selectMe">	Home Security. . .</option>'+
'					<option value="hkeep_security_sea.htm">...How to secure your home </option>'+
'				</select>'+
'			</form>'+
'		</td>'+
'	</tr>'+
'</table>'+
'');


