// JavaScript Document
function chooseService () {
var fieldsets = document.getElementsByTagName('fieldset');
var cont, dropdown, thebtn;
for(var i = 0; i < fieldsets.length; i++) {
			if(/services/.test(fieldsets[i].className)) {
				cont = fieldsets[i];
			}
}
dropdown = cont.getElementsByTagName('select')[0];
thebtn = cont.getElementsByTagName('input')[0];
thebtn.onclick = function () {
		goto(dropdown.selectedIndex);
	}
}
function goto(o) {
	var list = new Array ();
	list[0] = [""];    
	list[1] = ["business_park_mladost"];
	list[2] = ["liulin"];
	list[3] = ["ovcha_kupel"];
	list[4] = ["mladost"];
	list[5] = ["poduiane"];
	list[6] = ["plovdiv"];
	list[7] = ["varna"];
	list[8] = ["burgas"];
	list[9] = ["pleven"];
	list[10] = ["vratza"];
	list[11] = ["razgrad"];
	list[12] = ["shumen"];
	list[13] = ["haskovo"];
	//alert(list.length);
	//var tillNow = window.location;
	if (o != 0) {
	//alert(tillNow + list[o] + "_service.htm");
		window.location =list[o] + "_service.htm";
	}
}