/*  poner los el select de  quick_search si es que ya hay uno */

$(document).ready(function(){
	
	if(quick_search_l!="todo" || quick_search_p!="todo" || quick_search_l!="all" || quick_search_p!="all"){
	     $("#comboLocation option[@value='"+quick_search_l+"']").attr("selected","selected"); //select the second option
	     onSelectChange();
	}
	            
		$("#comboLocation").change(onSelectChange);
	


});

function onSelectChange(){
		var selected = $("#comboLocation option:selected"); //regresa el elmento seleccionado
		rutaAux=patAbsolta()+"includes/comboAjax.php";
//		alert(datos='tipoDestino='+selected.val()+'&AgenciasWebSite='+EsAgenciasWebSite+'&Language='+tipoLanguage+'&mayoristaAgency='+mayoristaAgency);
		var datos='tipoDestino='+selected.val()+'&AgenciasWebSite='+EsAgenciasWebSite+'&Language='+tipoLanguage+'&mayoristaAgency='+mayoristaAgency;
		$.ajax({
			async:false,
			cache:false,
	        type: "POST",
	        url: rutaAux,
	        data: datos,
	        success:  function(data){
	        	//alert('datos: '+ datos+ ' \n '+data);
	    		      $("#comboDestino").html(data);
	    		      if($("#comboDestino option[@value='"+quick_search_p+"']").length>0 )
							$("#comboDestino option[@value='"+quick_search_p+"']").attr("selected","selected"); //select the second option
					  else			
					      if(tipoLanguage=='esp')
			  	        	$("#comboDestino option[@value='todo']").attr("selected","selected"); //select the second option
			  	          else
							$("#comboDestino option[@value='all']").attr("selected","selected"); //select the second option
			}
	     });
	}
	
	function patAbsolta(){
		var auxPathname=location.pathname;
 		var carpetas=auxPathname.split('/');
 		var numCarpetas=carpetas.length-2;
 		var rutaAux="";
 		for(i=1 ;i<=numCarpetas ;i++)
 	   		rutaAux=rutaAux+'../';
 		return rutaAux;  
	}
