function GoToLink(dropdown)
{
	var myindex  = dropdown.selectedIndex
	var SelValue = dropdown.options[myindex].value
	var baseURL  = "http://www.sunnyvaledentist.com/our_services_"
	top.location.href = baseURL + dropdown.options[myindex].value;    
	return true;
}