<!--
function call_CityFeaturedLists()
{	with(window.document.Form_CityFeaturedLists)
	{	ix = city.selectedIndex;
		if (ix > 0)
		{	city_value = city[ix].value;

			target_url = "/vacation-resorts/"+ city_value + "-vacation-resorts/";

			location.href = target_url;

		}
		else
		{	target_url = "/vacation-resorts/";
			location.href = target_url;
		}

		return false;
	}
}
 

//-->