Making a select choice result in a popup in javascript
- by Ryan Johsonson
So this is using javascript and HTML.
For example:
   <select name='test' >
            <option value='1'>
            <option value='2'>
            <option value='3'>
    </select>
If someone chooses option value 2 (from the dropdown) I want a popup to appear.  However if they choose option value 1 or option value 3 (from the dropdown) I want nothing to happen.  
How can I do this?
Thanks