function changeCountry(Country){
	if (Country == 149){
		$("div#city_input").hide();
		$("div#city_select").show();
	} else {
		$("div#city_select").hide();
		$("div#city_input").show();
	}
}
