DhtmlxCombo + special character gives junk

Hi,

This is the code I use to generate the combo:

...html, head, body etc...
<script type="text/javascript" src="/Parket/Globale_Javascripts/dhtmlxcommon.js"></script>
<script type="text/javascript" src="/Parket/Globale_Javascripts/dhtmlxcombo.js"></script>
...
<table>
   <tr>
      <td>Country:</td>
      <td>
         <div id="country" style="width:200px; height:30px;"></div>
      </td>
   </tr>
</table>
...
...
<script type="text/javascript">
   window.dhx_globalImgPath="/Dhtmlxcombo/";
   var cboCountry=new dhtmlXCombo("country","alfa",200);
   cboCountry.addOption([["","&nbsp;"],["BE","België"],["NL","Nederland"]]);
</script>
... end body, end html...

België shows as België
How can I fix this? (Probably something stupid I forgot…)

Thx in advance!

Ok found the solution.
In my head it said:

<head>
   <title>Somepage</title>
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

In stead of:

<head>
   <title>Somepage</title>
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>