function loadPays(id_continent,list_to_update,lng,chemin_script) { 
  new Ajax.Request(chemin_script + 'spa-search/ajax.spa-search.php?id_continent=' + id_continent + '&lng=' + lng, {
        encoding: 'UTF-8',
        onSuccess: function(transport) {
            var response = transport.responseText;
            $(list_to_update).innerHTML = response;
        },                     
        onFailure: function(){

        }
  });
}

// Cette fonction met à jour le contenu du bouton qui permet d'afficher/cacher la recherche avancée 
function search_more_effect(textCache, textAffiche) {
  if($('search_zC').getStyle('display') == 'none') {
    $('search_morelink').update(textAffiche);
  }else{
    $('search_morelink').update(textCache);
  }
  
}
