<!--
function call_CityLuxuryLists()
{	with(window.document.Form_CityFeaturedLists)
	{	ix = city.selectedIndex;
		if (ix > 0)
		{	city_value = city[ix].value;
			
			target_url = "/luxury-condos/"+ city_value;
			
			location.href = target_url;

		}
		else
		{	target_url = "/luxury-condos/";
			location.href = target_url;
		}

		return false;
	}
}
 

//-->
