Do not use blockUI for this purpose. The blockUI plugin makes it block all input data on the screen, so it makes sense why you cannot "click" in the drop-down lists.
Instead, you should use dialog . For instance:
$('#btnTest').click(function() { $('#divAddNew').dialog({ modal: true }); });
source share