$(document).ready(function()
{
  $('#partie_bde_oui').click(function()
  {
    $('#poste_bde').fadeIn();
  });
  $('#partie_bde_non').click(function()
  {
    $('#poste_bde').fadeOut();
  });
  $('#type_mail').change(function()
  {
    if ($(this).attr('value') == 2)
      $('#mail_type_div').fadeIn();
    else
      $('#mail_type_div').fadeOut();
  });
});

