I have created this function to generate dynamic textbox onclick event of combobox value ::
function generateRow()
{
document.getElementById('txtother').style.display = '';
}
this is my combobox syntax ::
<option onclick="generateRow()" name="other">Other</option>
It will create textbox ...