// put even numbers for selection
document.write('<select name="website" onChange="javascript:getvalues()" class="txt">');
document.write('<option value="">Quick Links</option>');
document.write('<option value="chinese.html">Chinese Astrology</option>');
document.write('<option value="animalfinder.asp">Chinese Animal Finder</option>');
document.write('<option value="monthlyForecast.html">Chinese Monthly Forecast</option>');
document.write('</select>');
function getvalues()
{
	if (document.sitelist.website[document.sitelist.website.selectedIndex].value=="")
	{
		alert("Choose your section");
		return false;
	}
	
	document.location.href=document.sitelist.website[document.sitelist.website.selectedIndex].value;
	return true;
}
