Hi, I cant seem to find an answer to this that works, so any help is much appreciated.
I have two select menus:
eg
Code:
Sub Species <select name="marinesubspeciesselect" id="marinesubspeciesselect">
<option value="">Select Option</option>
<option value="AngelFish" disabled>Angelfish</option>
<option value="AngelFish Large" disabled>Angelfish Large</option>
<option value="Blue ring angelfish">Blue ring angelfish</option>
<option value="Arabian angelfish">Arabian angelfish</option>
</select>
and
Code:
Sub Species Scientific<select name="marinespeciesScientific" id=""marinespeciesScientific">
<option value="">Select Option</option>
<option value="AngelFish Large" disabled>Angelfish Large</option>
<option value="Pomacanthus annularis">Pomacanthus annularis</option>
<option value="Pomacanthus asfur">Pomacanthus asfur</option>
</select>
What I need as there is such a huge amount of fish species, is for the user to select the Sub Species of fish; ie Blue Ring Angelfish and for the select menu "marinespeciesScientific" to automatically fill with the correct Scientific Name for that fish.
ie. if the user selects Blue ring angelfish then the "marinespeciesScientific" menu to automaticaly display Pomacanthus annularis. And the same for the rest of the fish.
Is this possible, and if so I would appreciate some guidance.
Many Thanks