JSFiddle - React, Tailwind, and code Playground
by Ehsan Sajjad
HTML
<select id='visit'>
<option value='1' class='volunteer'>Romania</option>
<option value='2' class='volunteer1'>Slovakia</option>
<option value='3' class='volunteer2'>Belgium</option>
<option value='4' class='volunteer3'>Other</option>
</select>
<input id="txt" type="text" style="display:none;"/>
JavaScript
$('#visit').live('change', function () {
console.log($(this).val())
if ($(this).val() == 4) {
alert("Other selected")
//Code to change select list into textbox here
$('#txt').show();
}
else
$('#txt').hide();
});