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

			target_url = "/featured-condos-projects-listings/"+ city_value;

			location.href = target_url;

		}
		else
		{	target_url = "/featured-condos-projects-listings/";
			location.href = target_url;
		}

		return false;
	}
}
 

//-->