

var Inzeraty = {
	
	init : function() {
		document.getElementById('tlZobraz').style.display='none';
	},
	
	changeSelect : function(select,url) {
		var value = select.options[select.selectedIndex].value;
		if (value == '0') {
			window.location = '/'+url;
		} else {
			window.location = '/'+url+'kraj-'+value+'/';
		}
	}
	
}

Inzeraty.init();
