var countryList = '';
countryList += '<option selected>Canada-French</option>';
countryList += '<option></option>';
countryList += '<optgroup label="C through D">';
countryList += '<!-- Canada - Denmark  -->';
countryList += '<option value=en_CA>Canada-English</option>';
countryList += '<option value=fr_CA>Canada-French</option>';
countryList += '<option value=da_DK>Denmark-Danish</option>';
countryList += '</optgroup>';

countryList += '<optgroup label="F through I">';
countryList += '<!-- Finland - Italy  -->';
countryList += '<option value=fi_FI>Finland-Finnish</option>';
countryList += '<option value=fr_FR>France-French</option>';
countryList += '<option value=it_IT>Italy-Italian</option>';
countryList += '</optgroup>';
 
countryList += '<optgroup label="M through N">';
countryList += '<!-- Middle East - Netherlands  -->';
countryList += '<option value=en_ME>Middle East-English</option>';
countryList += '<option value=nl_NL>Netherlands-Dutch</option>';
countryList += '</optgroup>';
 
countryList += '<optgroup label="S through U">';
countryList += '<!-- Spain - United States -->';
countryList += '<option value=es_ES>Spain-Spanish</option>';
countryList += '<option value=tr_TR>Turkey-Turkish</option>';
countryList += '<option value=en_UK>United Kingdom-English</option>';
countryList += '<option value=en_US>United States-English</option>';
countryList += '</optgroup>';