Actionscript ComboBox

Hey guys, here is the AS that I am trying to use. Its a combo component, on index change it suppose to go to the frame number specified and then stop. When I change it for the first time, the script runs fine, but after that the script doesn’t work. This AS is in frame 1. Frame 2 has identical code, the changes are PageName = “NewName” and rssComobo.selectedIndex = 1;"

[AS]PageName = “Snehal”;
rssCombo.selectedIndex = 0;
nchange = new Object();
nchange.change = function (evt){
PageName = evt.target.selectedItem.data;
if (PageName == “Snehal”)
gotoAndStop(1);
else if (PageName == “Neetu”)
gotoAndStop(2);
else if (PageName == “Prometheus”)
gotoAndStop(3);
else if (PageName == “Paras”)
gotoAndStop(4);
}

rssCombo.addEventListener(“change”, nchange);



I have a feeling that I might have more questions about the rest of the AS in this little experiment, just thought I break it down into segments.  

Thanks for your help.

Snehal