autocomplete with params

autocomplete with params

Hello!

I have a script that works with  autocomplete. 
But I need to add another parameter to  myurl  when selecting from the dropdown menu.
Can anyone help?
  1. <from>
  2. <select name="country" id="country" class="btn-country-select">
  3. <option value="0"></option>
  4. <option value="1" >Austria</option>
  5. <option value="2" >Zambia</option>
  6. </select>
  7. <input type="text" name="searchStr" id="searchStr">
  8. </form>
  9.             
  10. $().ready(function() {
  11. $("#searchStr").autocomplete("myurl", {
  12. width: 218,
  13. matchContains: true,
  14. selectFirst: false
  15. });
  16. });