$(function(){

  if($("#user_profile_attributes_student").attr("checked") == true){
    $(".b-student_fields").show();
  }else{
    $(".b-student_fields").hide();
  }
  
  $("#user_profile_attributes_student").click(function(){
    if($(this).attr("checked") == true){
      $(".b-student_fields").show();
    }else{
      $(".b-student_fields").hide();
    }
  });
});