how to change the value of select on select code example
Example 1: javascript select change selected
const options = Array.from(select.options);
options.forEach((option, i) => {
if (option.value === use_id) select.selectedIndex = i;
});
Example 2: jQuery change select value
$("#mySelectElementID").val("my_new_value"); //change selected option/value with jQuery