//function changeCareer(el){ // if(!el.value){ // $('otherCareerDesc').style.display = ""; // }else{ // $('otherCareerDesc').style.display = "none"; // } //} //Function to execute when the student type is selected function studentTypeChange(num){ if(num == ""){ $('careerSelect').style.display = 'none'; $('otherCareerDesc').style.display = 'none'; }else if(num == 6){ $('careerSelect').style.display = ''; $('otherCareerDesc').style.display = 'none'; }else{ $('careerSelect').style.display = 'none'; $('otherCareerDesc').style.display = ''; } } //Function to execute when the university is selected function universityChange(num){ if(num == 1){ $('otherUniversitySpan').style.display = ''; }else{ $('otherUniversitySpan').style.display = 'none'; } }