JSFiddle - React, Tailwind, and code Playground

HTML

<script
  src="https://code.jquery.com/jquery-3.2.1.min.js"
  integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
  crossorigin="anonymous"></script>
<input type="text" class="moving-input form-control" id="first-name-search" value="">
<button type="reset" class="results-form-link" id="perform-new-search">Perform a New Search</button>

JavaScript

$('#perform-new-search').click(function() {
		
    $('#first-name-search').val('hello');
    $('#last-name-search').val('');
    $('#results-states option:selected').val('Select State');
})