Form arrays dont work plz help

for some reason my arrays dont work so when u choose a state the city combo box should populate the city of that state…but i just have bs in there for the cities now…here is script

florida= new Array(“Chrysler”,“Porche”,“Mazda”,“Toyota”);
georgia = new Array(“Hamburger”,“Hotdog”,“Pizza”);
alabama = new Array(“Water”,“Beer”,“Wine”,“Martini”);
function setSubCombo() {
city.removeAll();
var subArray = eval(state.getSelectedItem().data);
for(var i=0; i<subArray.length; i++) {
city.addItem(subArray*,subArray*);
}
}

// 6. Push Buttons
// ---------------
// Reset button function
onReset = function () {
// combobox
state.setScrollPosition(0);
state.setSelectedIndices(null);
// combobox
city.setScrollPosition(0);
city.setSelectedIndices(null);
// combobox
venue.setScrollPosition(0);
venue.setSelectedIndices(null);
// combobox
agegroup.setScrollPosition(0);
agegroup.setSelectedIndices(null);
// combobox
musictype.setScrollPosition(0);
musictype.setSelectedIndices(null);
// text
comment.text = “”;
bar._visible = false;
}
// Submit button function
onSubmit = function () {
texte = comment.text;
_root.gotoAndStop (“1”);
}