JSFiddle - React, Tailwind, and code Playground

HTML

<select class="businessTypePullDown">
    <option value="" disabled selected>Business Type</option>
    <option value="1">General</option>
    <option value="2">Lawyer</option>
    <option value="3">Software Development</option>
    <option value="4">Auto-repair</option>
</select>

JavaScript

function filterPullDown () {
    
    alert('hello');
}

$(".businessTypePullDown>option:not(:disabled)").click(filterPullDown);