function _toGo() {
	var getVar = document.getElementById('city').selectedIndex;
	if (document.getElementById('city')[getVar].value=="none") {alert('Выберите направление');}
	else {location.href = document.getElementById('city')[getVar].value;} 
}

function changeCity(rul) {setOptions(rul);}

function setOptions(rul) {
	var strDB = optiondb[rul];
	var option = document.getElementById('city');
	while (option.childNodes.length > 0)
	option.removeChild(option.childNodes[0]);
	var node = document.createElement('option');
	node.value = "none";
	node.appendChild(document.createTextNode("Выберите клинику..."));
	option.appendChild(node);
	for (var i = 0; i < strDB.length; i++) {
	var db = strDB;
	var node = document.createElement('option');
	node.value = db[i].value;
	node.appendChild(document.createTextNode(db[i].text));
	option.appendChild(node);
	}
}
