Exactly. And to avoid the ifs, you can use switch/case:
onChange = function (mycombo){
var myVal=mycombo.getselecteditem().label;
switch (myVal){
case val1: //something
break;
case val2: //something else
break;
}
}
Jose, all the methods are in the reference panel and in the actionscript dictionary. It would serve you well to look them up, for you may see system capabilities that you were not aware of, and that we may not mention unless you ask.