If a user comes to a page with dynamically loaded dropdownlists using the back button – use this to force the page to reload so the dynamic controls reload their content to initial state:
if (performance.navigation.type === 2) {
location.reload(true);