Accessing a combobox from within a function

I have a combo box defined inside a function and want to access it from a function that is called on the OnChange event of the combo box.

combo1.addEventListener(Event.CHANGE, chkAnswer);

How do I access combo1 from function chkAnswer? In other words, what is the equivalent of this.value in as3?