I need to add input to a select option when it is selected. Whenever the user selects 'other' an input box is there for the user to enter in data.
HTML:
<select>
<option>Choose Your Name</option>
<option>Frank</option>
<option>George</option>
<option>Other</option>
</select>
<!-- when other is selected add input
<label>Enter your Name
<input></input>
</label> -->
My jsfiddle: http://jsfiddle.net/rynslmns/CxhGG/1/