function changeTabs(type) {
	if(type == 'city') {
		document.getElementById("cityContent").style.display = "block";
		document.getElementById("countryContent").style.display = "none";
		return false;
	} else {
		document.getElementById("cityContent").style.display = "none";
		document.getElementById("countryContent").style.display = "block";
		return false;
	}		
	return false;
}


