ComboBox query?

I am trying to write a Change Handler for a ComboBox that will load a new movie. The instance of the ComboBox is called ‘dropdown’. This is my actionscript:

function handler() {
(dropdown.getSelectedItem().data);
}

The goal is to load a new movie depending on what the user selects.
Can anyone help?