can you complete this nested each loop?

can you complete this nested each loop?

Hello - I've written the following html test page below.  The goal of this test page is to remove embargoed countries from 3 country dropdowns on the page.  Nested jQuery each loops can sometimes be tricky to implement.  Can you please take a look at the nested each loop below and update/complete it to meet this business requirement?:
 
<html>
<head>
<script src="jquery-1.8.1.js" type="text/javascript"></script>
<script>


$(function(){ RemoveEmbargoedCountries(); })

function RemoveEmbargoedCountries() {

    //country ddl ids
    var countryInputIds =
    [
        'new_address1_country',
        'new_address2_country',
        'new_address3_country'
    ];





    //embargoed country codes
    var embargoedCountyCodes =
    [
        '103', //iran
        '204', //syria
        '185', //sudan
        '52',  //cuba
        '174'  //north korea
    ];







    $.each(countryInputIds, function () {
          $.each(embargoedCountryCodes, function(){
              //remove embargoed country code options from country input
         }
    });
}
</script>
</head>
<body>







<select id="new_address1_country">
   <option value="103">Iran</option>
   <option value="204">Syria</option>
</select>


</body>
</html>