Well, Mandy, show your select, show your load and how you bind data to the combobox, what settings you do to it. There are a lot of ways you can get a list into a combobox and it matters what you do to make the appropriate change. You seem to think you told us the most important and essential information, but you didn't. So you likely deem details unimportant that actually are making the difference. You are at a stage you should already know yourself what to do, because this seems to me like a problem you already had earlier for another similar situation.
Also, you got a list into the combobox in the first place. The steps to do are known to you.
To demonstrate why it matters how you bind data:
For example, if you use additem to put items into a combobox, then changing the workarea or even filtering it won't have any effect. Just like when you make a copy of a page and then write something on the original, do you really expect that change also to appear on the copy?
Or, if you SELECT into yet another workarea alias name, and the combobox is still bound to the first select result alias name, do you really expect that to change the combobox?
If we don't know everything you do in code and properties to the combobox, we can't really help. So like so often, please tell more, we're not in your head nor on your computer.
Chriss
PS: I'm not even sure you think of filtering the data you already have, like Tore's solution with SET FILTER could do (depending on how you bind data to your combobox). If you filter the data you already have in the combobox, you won't be able to change from names starting with A to names starting with B, to give an example. Because names starting with B are not within names starting with A.
So you're already on a good way with doing a query, now you just need to get this to the same combobox again. And, well, you managed to do this with the first query result from load. What's hindering to get the same thing done twice?