//hide or show the UL list
function displayWeatherList(){
	var objCityList = document.getElementById( 'CityList' );
	if( objCityList.style.display == 'block' )
		objCityList.style.display = 'none';
	else
		objCityList.style.display = 'block';
}