CBX = function()
{
    this.LoadWithXml = function(_xml, _cbxNom, _itemNom, _valueNom)
    {
        var i = 0;
        var cbx = "";
        var xmlColl = _xml.getElementsByTagName(_itemNom);
        cbx = "<select name=\""+_cbxNom+"\" id=\""+_cbxNom+"\"><option value=\"#\"></option>";
        if (xmlColl.length > 0)
        {
            for (i = 0; i < xmlColl.length; i++)
            {
                var id = xmlColl.item(i).getAttribute("id");
                var nom = xmlColl.item(i).getElementsByTagName(_valueNom)[0].childNodes[0].nodeValue;
                cbx += "<option value=" + id + ">" + nom + "</option>";
            }
        }
        cbx += "</select>";
        return cbx;
    }
}
