function toggle_radio(tertiary_id){
    if (tertiary_id == 'with_tertiary' || tertiary_id == 'without_tertiary' || tertiary_id =='hsc'){
        $('post_entry_type_non_school_leaver').checked = true;
    }
    //else if (tertiary_id == 'Non School Leaver'){
    //    $('tertiary_record_with').checked = true;
    
    else{
        $('tertiary_record_with').checked = false;
        $('tertiary_record_without').checked = false;
        $('tertiary_record_hsc').checked = false;
    }
}

function toggle_element(element){
    if (element == 'tertiary'){
        if ($('post_entry_type_non_school_leaver').checked == true){
            $(element).show();    
        } else {
            $(element).hide();
            $('tertiary_record_with').checked = false;
            $('tertiary_record_without').checked = false;
            $('tertiary_record_hsc').checked = false;
        }
    }  
}

function check_radios(){
    if ($('post_entry_type_school_leaver').checked != true && $('post_entry_type_non_school_leaver').checked != true){
        alert("Please select type of applicant.");
        return false;
    } else if ($('post_entry_type_non_school_leaver').checked == true){
        if ($('tertiary_record_with').checked == false && $('tertiary_record_without').checked == false && $('tertiary_record_hsc').checked == false){
            alert("Please select tertiary record.");
            return false;
        }        
    }
}