Combobox How to write urls in xml file?

Hi! Sorry for my english!



Help me please!



How to make the hyperlink for every unique item in the list,

after finding this item and clicking or pressing enter button



For example:



<?xml version="1.0" ?>



    msn

    yahoo

    google





So



If I type msn in the box and press enter i want to visit google.com





How to make it real with dhtmlxcombo?



Thank you in advance

You can use

<?xml version="1.0" ?>



    msn

    yahoo

    google




and in js code
    var z = new dhtmlXCombo(…
    z.loadXML(…
    z.attachEvent(“onChange”,function(){
       document.location.href=“http://”+z.getActualValue();
    });