JSFiddle - React, Tailwind, and code Playground

HTML

<select id="boSelectPrice" style="width: 100%;" dir="rtl">
  <option value="0">0</option>
  <option value="1">1</option>
</select>

JavaScript

$("#boSelectPrice").change(function(){
  alert("The text has been changed.");
});

boSelectPrice.value = 1