JSFiddle - React, Tailwind, and code Playground
HTML
<select class="selectVidente">
<option>Brasil</option>
<option value="010101">será</option>
<option>hexacampeão</option>
</select>
<br>
<br>
<input type="text" id="teste" class="opcaoSelect">
<input type="text" class="opcaoSelect">
<input type="text" class="opcaoSelect">
<input type="text" class="opcaoSelect">
JavaScript
$(document).ready(function(){
$('.selectVidente').on('change', addOption);
});
function addOption(){
$('.opcaoSelect').val(this.value);
}