I have the following code:
Type 1 Type 2
Try this:
Type 1 Type 2 Type 3 Other
JQuery:
$(function(){ // hide by default $('other').css('display', 'none'); $('selectbox_id').change(function(){ if ($(this).val() === 'Other') { $('other').css('display', 'block'); } }); });