$(function(){
  $("#reset-condition").click(function(){
    $(".c2").removeAttr('disabled');
    $("input[@name=a]").removeAttr('checked');
    $("input[@name=c]").removeAttr('checked');
    $("input[@name=p]").removeAttr('checked');
    $(".c2").show();
  });
  $("input[@name=c]").click(function(){
    if($(this).val()==2) {
      $(".c2").removeAttr('disabled');
      $(".c2").show();
    } else {
      $(".c2").removeAttr('checked');
      $(".c2").attr('disabled', 'disabled');
      $(".c2").hide();
    }
  });
});
