document.getElementById('<%= yourDropdown.ClientID %>').onchange();
This should work if you still get some error, you can try the following:
setTimeout('__doPostBack(\'yourcontrolClientSideID\',\'\')', 0);
yourcontrolClientSideID - identifier of the visualized client identifier.
Irfan
source
share