Problem with combobox

how to add items from external file to flash component combobox? Any ideas?

here’s the current code:
[AS]
//cars is the combobox instance
//car1 is the variable from replaycars.php file and it equals to KIT
_root.loadVariables(“replaycars.php”);
cars.addItem(car1);
cars.addItem({data:2, label:“second value”});
cars.addItem({data:3, label:“third value”});
[/AS]