I have a registration form, with a selected, but one of the options of this selected when selected should appear an input. Example:
<select>
<option>value1</option>
<option>value2</option>
</select>
<input type="text" style="display:none" />
When option 2 was chosen, the input (display: block)
Does anyone know how to do this? Thank you