set a default selection on select box dropdown list using jquery.

set a default selection on select box dropdown list using jquery.

Here this is my for following code for creating dependent select box using jquery.
what i am exactly needed is how to set default selection of dropdown,I am struggle on this selection.Please help me guys... 
  1.   
  2. var categories = {
  3.           "Select":[{value:'select',text:'Select'}],

  4. "United States":[{value:'0', text:'Select'},{value:'55', text:'Currency'},{value:'67', text:'Card'},{value:'56', text:'Cheque'}],
  5.           "European":[{value:'0', text:'Select'},{value:'30', text:'Currency'},{value:'40', text:'Card'},{value:'50', text:'Cheque'}],
  6.           "Britian":[{value:'0', text:'Select'},{value:'10', text:'Currency'},{value:'20', text:' Card'},{value:'30, text:'Cheque'}],
  7.           "Australia":[{value:'0', text:'Select'},{value:'1', text:'Currency Notes'},{value:'2', text:'Card'},{value:'3', text:'Cheque'}],
  8.              };
  9. function selectchange($this) {
  10.               var select = $this.parents('.product-item').find('.orderbox2');
  11.               select.empty();
  12.               $.each(categories[$(':selected', $this).text()], function () {
  13.                   select.append('<option value="' + this.value + '">' + this.text + '</option>');
  14.               });
  15.           }

  16. $(function () {
  17.           $("#product").on("change", '.orderbox1', function() { selectchange($(this)) });
  18.           $("#product").append(categories);
  19. });
  20. </script>
  21. <body>
  22. <DIV class="product-item>
  23. <div>

  24. <select  name="item_currency[]" id="orderbox1" class="orderbox1" >
  25.                   <option value="">Select</option>
  26. <option value="usa">United states</option>

  27. <option value="gbp">Britian</option>

  28. <option value="eur">European</option>
  29. </div
  30.  <div>

  31. <select name="item_size[]" id="orderbox2" class="orderbox2" >
                       </select>
</div>
</div>