If you catch the element by its xpath, then you can change or add styles to it as
location_selector = driver.find_element(By.XPATH, '//select[@data-placeholder="Return Locations"]')
driver.execute_script("arguments[0].style.display = 'block';", location_selector)