// JavaScript Document
	// Ajax
    function form_ricerca_modello_ajax(curLang){
		var selId = '#sel_categoria';
		var cat_code = $("select"+selId).val();
		var theUrl = '/php/ajax_form_ricerca_modello.php?CAT_CODE='+cat_code+'&langCode='+curLang;
		//alert('theUrl'+theUrl);
		var divId = '#sel_modello';
		jQuery.ajax({
			type: "POST",
			url: theUrl,
			success: function(html){
				if(html!=''){
					$(divId).html(html);
					$(divId).removeClass();
					$(divId).addClass(cat_code);
				}
			}
		});
	} // form_ricerca_modello_ajax

    function form_ricerca_modello_go(curLang){
		var selId = '#sel_modello';
		var serie_code = $("select"+selId).val();
		var theUrl = '/'+curLang+'/cat_serie.php?ID='+serie_code;
		//alert('theUrl'+theUrl);
		document.location = theUrl;
	} // form_ricerca_modello_go

