Want to fire event on onchange event and want to get that pa

Hi,



I am using one combobox above the table, and I want that the div will get load after changing the id of that combobox.

I want to pass my project Id from that combobox and want to fetch to the record according the selected project. So, that the data of that div should get fill of that particular project.



This is my html page which shows the dropdown.













































Checkbox Select









Checkbox Select



























I want to show to data of selected project inbetween the div given below.

<div id=“projId”’>



Please reply me as soon as possible



Thanks

Suraj


Combo has onChange event. It occurs when new option is selected:


combo.attachEvent(“onChange”,function(){


var selected_value = combo.getActualValue();


/your code here/


})