jQuery( document ).ready( function () {

  jQuery( 'div.select select' ).change( function () {
    jQuery( 'div.other' ).hide();
    if (jQuery( 'div.select select option:selected' ).text() == 'Other') {
      jQuery( 'div.other' ).show();
    }
  } );

} );

