JSFiddle - React, Tailwind, and code Playground
HTML
<select id='sel' size='1'>
<option><></></option>
<option><p></p></option>
<option><div></p></option>
<option>test<br>test</option>
</select><br/><br/>
<textarea id='txtarea'></textarea>
CSS
textarea{width:100%;height:200px;}
JavaScript
$(document).ready(function() {
var tempValue = '';
$('select').change(function() {
tempValue += $(this).val();
$('textarea').html(tempValue);
});
});