I want to create 4 dropdown lists. Like this:
District:
<select id="district">
<option>Select a District</option>
<option value="district1">dstrict1</option>
</select>
<br>
<br>
School:
<select id="school">
<option value=school1><a id="school1">Select a District</a></option>
<option value=school2><a id="school2">Select a district</a></option>
</select>
<br>
<br>
Grade:
<select id="grade">
<option value="grade1">Select a school</option>
<option value="grade2">7th grade</option>
<option value="grade3">8th grade</option>
<br>
<br>
</select>
House:
<select id="grade">
<option>Select a school</option>
<option value="house1">house1</option>
<option value="house2">house2</option>
<br>
<br>
</select>
However, I want the items shown in the school list (along with the values) to be dependent upon what district I choose. Along with that, the grade list (along with the values) is dependent upon what school you choose. Finally, the house list (along with the values) needs to be dependent upon what grade you picked. I'm working with a program that doesn't support add ons so the code would need to be pure html and javascript