jQuery(document).ready(function(){
	jQuery('#choixPays').change(function(){
		reload_directory_select();
	});
	
	jQuery('#choixCategorie').change(function(){
		reload_directory_select();
	});
	
	jQuery('#form_directory').submit(function(){
		if ( (jQuery('#choixCategorie').val() !='') || (jQuery('#choixPays').val() !='') || (jQuery('#choixSociety').val() !='') )
			jQuery('#form_directory').submit();
		return(false);
	});
	
});

function reload_directory_select()
{
	jQuery.ajax({
			type: 'POST',
			url: 'directoryListCatSo.php',
			data: jQuery('#form_directory').serialize(),
			success: function(data){
				jQuery('#choixSociety').empty();
				jQuery("<option>").attr('value','').html('Indiff&eacute;rent').appendTo("#choixSociety");
				jQuery.each(data.liste_categorie, function(i,elem){
					jQuery("<option>").attr('value',elem.id).html(elem.name).appendTo("#choixSociety");
				});
			},
			dataType: 'json'
		});
}
