If I choose Master Degree option from the first select box then in the second select box it will show only MBA/Finance and MBA/Marketing option and from the third select box it will show Bachelor Degree, Master Degree, and Doctorate Degree. Now If I choose Bachelor Degree option from the first select box then in the second select box it will show only BCJ/Law Enforcement and BCJ/Corrections option and from the third select box it will show all the options. I have done few codes but it’s not working.
<select id="degree">
<option value="default">Choose a degree</option>
<option value="Master">Master Degree</option>
<option value="Bachelor">Bachelor Degree</option>
<select id="program">
<option value="default">Choose a program</option>
<option value="MBA/FN" Degree="Master">MBA/Finance</option>
<option value="MBA/MK" Degree="Master">MBA/Marketing</option>
<option value="BCJ/LE" Degree="Bachelor">BCJ/Law Enforcement</option>
<option value="BCJ/COR" Degree="Bachelor">BCJ/Corrections</option>
<select id="level">
<option selected="selected" value="">Choose Highest level of Education</option>
<option value="Less than 2 years of college">Less than 2 years of college</option>
<option value="2 or more years of college">2 or more years of college</option>
<option value="Associate Degree">Associate Degree</option>
<option value="Bachelor Degree">Bachelor Degree</option>
<option value="Master Degree">Master Degree</option>
<option value="Doctorate Degree">Doctorate Degree</option>