Combo box help

Hi guys, i need help regarding the combo box component. I want my 1st label to link to scene 1 and 2nd label to scene 2 and so on. Is this possible? I have no foundation in actionscripts. I appreciate alot if anyone of you can guide me step by step how i do it? It would be great if you can provide me an sample. I sincerely thanks all of you in advance

myComboBox.dataProvider = [{label:“Select”,data:“l0”},{label:“test1”, data:“l1”},{label:“test2”,data:“l2”},{label:“test3”, data:l3},{label:“test4”, data:6}];
myComboBox.addEventListener(“change”, gotoFrame);

function gotoFrame(){
trace(this.selectedItem.data);
gotoAndStop(this.selectedItem.data);
}