Sorry if this is extremely obvious, but I have looked and looked for a solution but haven\'t found anything. I\'m very new to jQuery, so even looking for what I want to do h
Assuming by default your html has both boxes and the "Other" box is hidden.
val = $('#myselect').val(); switch( val ) { case "Other": $('#mybox').hide(); $('#myotherbox').show(); break; }