I just basically want to change the first value of "Select" to more meaningful, as in "Select Category". This needs to be done through JQuery.
Here is the HTML
<select data-facet="field" id="ajax-facets" name="field_" class="form-select processed">
<option value="0">Select</option>
<option value="Do Something">Do Something</option>
<option value="Did Something">Did Something</option>
</select>
How can I do it through JQuery?