JSFiddle - React, Tailwind, and code Playground

HTML

<select id="diagnose_sicherheit" name="diagnose[sicherheit]" class="hidden-field" data-id="1377670814577-LN7za">
    <option value="V">Verdacht auf</option>
    <option value="Z">Zustand nach</option>
    <option value="A">Ausschluss</option>
    <option value="G">Gesicherte Diagnose</option>
</select>

<div id="sicherheit"></div>

JavaScript

$('#diagnose_sicherheit').change(function(){
    var value = $("#diagnose_sicherheit option:selected" ).val();
    var text  = $("#diagnose_sicherheit option:selected" ).text();
    alert("Value : "+value+" \nText : "+text);
});