function __(msgid) {
    return msgid;
}

$(document).ready(function () {
    
    if ($('#displayed_form').val() == 0) {
        $('#new_student_form').hide();
    }
    
    $('#a_new_student').click(function () {
        $('#new_student_form').show();
    });
    
    // $('#has_dph').click(function () {
    //     if ($(this).is(':checked')) {
    //         $('#icdph_line').show();
    //     } else {
    //         $('#icdph_line').hide();
    //     }
    // });
});

