JSFiddle - React, Tailwind, and code Playground

HTML

<div id="videodiv" > Some embedded video code</div>

     <div id="videodiv2" >
         <input type='text' name="MARKE-MODELIS" class="form-control" value="modelis"/>
		<input type='text' name="VALSTYBINIS-NUMERIS" class="form-control" value="valst numeris"/>
		<input type='text' name="PAGAMINIMO-METAI" class="form-control" value="metai"/>
		<input type='text' name="KEBULO-NUMERIS" class="form-control" value="kebulo nr"/>
		<input type='text' name="AUTOMOBILIO-VERTE" class="form-control" value="verte"/>
		<input type='text' name="REGISTRACIJOS-LIUDIJIMO-NUMERIS" class="form-control" value="reg numeris"/></div>
     <div id="videoPlayback"> The div where all the embedded videos will end up loading</div>     


<select>
    <option selected>Please Select...</option>
    <option value="videodiv">Video Div</option>
    <option value="videodiv2">Video Div2</option>
</select>

JavaScript

$('select').change(function() {
    var domElement = $(this).val();
    $('#videoPlayback').html($('#' +  domElement.toString()).html()); 
});