dhtml combobox - onFoucs event???

Hello

I have attached onFoucs event to my dhtml combobox, and it does trigger.

myCarDDL.DOMelem_input.onfocus = function(event) {
     someFunction();
}

Now my concern is how to trigger this onFocus event manually.
Before DDLObj.focus() would trigger the event for the control.
How should I trigger for this dhtmlx dropdown list control?

Please advice.

Thanks in advance.

hey folks,

I have tried the following & it worked. If there is any other way plz let me know.

myCarDDL.DOMelem_input.onfocus();

Cheers !