Here is my run-of-the-mill drop down:
<select name="">
<option value="">--Select One--</option>
<option value="textarea">Text Area</option>
<option value="textbox">Text Box</option>
<option value="checkbox">Check Box</option>
<option value="dropdown">Drop Down</option>
</select>
What I want to do is show show/hide other elements on the page based on if certain options are selected from the drop down.
So if "Text Area" was selected, then a div with the ID "textarea_fields" would show. If something else was then selected, that would hide and the other element would show for that select option.
I'm using jQuery, so using what that library offers is certainly an option.