JSFiddle - React, Tailwind, and code Playground

by Carlos Cariello

HTML

<label for="teste">Selecione: </label>
	<select name="teste" id="teste" onchange="if( this.value =='novo' ){document.getElementById('justificativa').value = 'Novo selecionado';
  }">
		<option value="1">1</option>
		<option value="2">2</option>
		<option value="novo">novo</option>
	</select>
  <hr style="margin-top: 1vh"/>
  <textarea id="justificativa"></textarea>