I have a radcombobox in a user control. I handle the SelectedIndexChanged client-side event of the combobox to perform some actions on the display text of the combo box within the user control. In some scenarios, I need to be able to run some other javascript on the page which contains the user control when an item is selected. I essentially need to hande the combo's selectedindexchanged event within the page which contains the user control. I can, of course, wire it up so the javascript handler in the parent page REPLACES what is normally run in the selectedindexchanged handler, however, what I need is to be able to run both... what is normally run in the user control, and what is run additionally in the parent page. The handler in the user control should probably run fiirst. Can anyone help me figure out how to accomplish this?