We probably need to see your code to understand the exact problem, but from what you said it sounds like you need to set the update panel inside your modal popup to have
UpdateMode="Conditional"
Then add a trigger to the update panel:
<Triggers>
<asp:AsyncPostBackTrigger
ControlID="ddlPopLiveDB"
EventName="SelectedIndexChanged" />
</Triggers>
Hope this helps