What do you think of this idea?:
Give your users a drop-down box that has 2 columns: [Room #] and [Wire ID]. The bound column being the [Room #], but the records being sorted by [Wire ID]. You could even hide the [Room #] column from them.
The Row Source of your list box (where you would get a list of all wires for the room in question) would be something like this, then:
Select [Wire ID] from [myTable]
Where [Room #] = Forms![myForm].[myCombo].Value
Order by [Wire ID]
When you change the combo, do a requery on the list box.