function hideElement(element_id) {
	document.getElementById(element_id).style.display = 'none';
}
function showElement(element_id) {
	document.getElementById(element_id).style.display = '';
}
function check_country() {
	var x = document.getElementById("signup_country").value;
	if (x == "TR") {
		showElement("signup_city");
		hideElement("signup_city2");
	} else {
		hideElement("signup_city");
		showElement("signup_city2");
	}
}
