$j(function() {

	updateSearchForm(1);

	$j("#search").autocomplete(root+"moduli/catalogo/search.php", {
		width: 270,
		selectFirst: false
	});

});

function resetSearchForm() {
	
	document.getElementById('cancellaSearchForm').value=1; 
	document.search_form.submit();
	
}


function checkSelectForm(name, other){	
	
		
	obj=$j('#'+other);
	
	val=document.getElementById(name).value;
	
	if(val=='') obj.removeAttr("disabled"); 	
	
	else obj.attr('disabled', "disabled");
	
	
}


function updateSearchForm(isFirstCreation){	

	
	var provincia=document.getElementById('provincia').value;
	
	var tipo_produttore=document.getElementById('tipo_produttore').value;
	
	var gallery=root+"pages/updateForm.php?langAttuale="+lang+"&provincia="+provincia+"&tipo_produttore="+tipo_produttore;
	
	
	if(isFirstCreation) {
		
		var cantina=document.getElementById('cantina').value;	
		
		gallery+="&cantina="+cantina;
		
	}
	
	$j("#selectCantina").load(gallery, function(){});
	
}
