function ispisVrstaNekretnina(vrsta_objekta) {
	
	if(vrsta_objekta.length != '') {
		$.post("/include/ajax/switch.php?exec=ispisVrstaNekretnina", {queryString: ""+vrsta_objekta+""}, function(data){
			if(data.length >0) {
				$('#vrsta_nekretnine').html(data);
			}
		});
	}

	ispisVrstePosla(vrsta_objekta);
} 


function ispisVrstePosla(vrsta_objekta) {
	
	if(vrsta_objekta.length != '') {
		$.post("/include/ajax/switch.php?exec=ispisVrstePosla", {queryString: ""+vrsta_objekta+""}, function(data){
			if(data.length >0) {
				$('#vrsta_posla').html(data);
			}
		});
	}

} 




function ispisVrstePoslaDrop(vrsta_objekta, reaction) {
	if(vrsta_objekta.length != '') {
		$.post("/include/ajax/switch.php?exec=ispisVrstePoslaDrop", {queryString: ""+vrsta_objekta+""}, function(data){
				$('#'+reaction).html(data);
		});
	}

} 


function ispisPodregije(regija_id) {
	var podregija1 = document.getElementById('box_podregija1');
	var podregija2 = document.getElementById('box_podregija2');
	if (regija_id == '1') {podregija1.style.display = 'block';podregija2.style.display = 'block';} else {podregija1.style.display = 'none';podregija2.style.display = 'none';}
} 


function ispisPodregijeDrop(regija_id, reaction) {
	if(regija_id.length != '') {
		$.post("/include/ajax/switch.php?exec=ispisPodregijeDrop", {queryString: ""+regija_id+""}, function(data){
				$('#'+reaction).html(data);
		});
	}
} 
