Make a radio button selected when an item select from the list

Make a radio button selected when an item select from the list

I have the following code. I have the country field in the list and the currency field in the radio button. what I want is, when I will select a country, it will automatically select the currency from the radio button. I have 3 currencies US, EUR & GBP, for EU it will be EUR, for UK it will be GBP & for the rest it will be US. 
how can I do this using jquery.
please help me....
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Radio button and List Check</title></head>
  5. <body>
  6. <form class="form-horizontal" action="" method="post">
  7. <div class="form-group">
  8. <label class="col-sm-2 control-label" for="devices2">Country</label>
  9. <div class="col-sm-10">
  10. <select class="form-control" id="country">
  11. <option value="">Please select Country</option>
  12. <option value="US">US</option>
  13. <option value="EU">EU</option>
  14. <option value="UK">UK</option>
  15. <option value="China">China</option>
  16. <option value="India">India</option>
  17. <option value="Korea">Korea</option>
  18. <option value="Asia">Asia</option>
  19. <option value="Russia">Russia</option>
  20. </select>
  21. </div>
  22. </div>
  23. <div class="form-group">
  24. <label class="col-sm-2 control-label" for="devices1">Currency</label>
  25. <div class="col-sm-10">
  26. <label class="radio-inline">
  27. <input type="radio" name="optradio" >USD</label>
  28. <label class="radio-inline">
  29.    <input type="radio" name="optradio">EUR</label>
  30. <label class="radio-inline">
  31. <input type="radio" name="optradio">GBP</label>
  32. </div>
  33. </div>
  34. </form>
  35. </body>
  36. </html>