var ivuSearchLocation = 0;

function setIvuSearchLocation(selectElem, switchElem) {
	ivuSearchLocation=document.getElementById(selectElem).value;
	if(ivuSearchLocation == 2) {
		document.getElementById(switchElem).className = "mostra";
	}
	else {
		document.getElementById(switchElem).className = "nascondi";
	}
}
