// JavaScript Document
$(document).ready(function() {
  $("select[name='f_id_region']").change(function(){
		$("div[name='bloc_ville']").hide("slow");
    $("div[name='bloc_ville']").children().remove();
    $("div[name='bloc_departement']").hide("slow");
    $("div[name='bloc_departement']").children().remove();
    
    if($(this).val() != ''){
      $.get("/root/html_include/ajax/affiche_select_departement.php",{id_region : $(this).val()},
        function(data){
          $("div[name='bloc_departement']").html(data);
          $("div[name='bloc_departement']").show("slow");
          active_select();
        }
      );
    }
	});
	
	$("input[name='input_date']").click(function(){
		if($(this).val()==1){
      $("div[name='div_input_date']").show("slow");
    }else{
      $("div[name='div_input_date']").hide("slow");
    }
	});
});

function active_select(){
  $("select[name='f_id_departement']").change(function(){
    $("div[name='bloc_ville']").hide("slow");
		$("div[name='bloc_ville']").children().remove();
    
    if($(this).val() != ''){
      $.get("/root/html_include/ajax/affiche_select_ville.php",{id_departement : $(this).val()},
        function(data){
          $("div[name='bloc_ville']").html(data);
          $("div[name='bloc_ville']").show("slow");
        }
      );
    }
	});
}


