1: When you start a Remote Control you define which environment it provides to the Hub.
ant -Denvironment="Firefox on Windows" launch-remote-control
2: In your Selenium test, when instantiating the Selenium driver, pass the Hub environment in lieu of the browser string:
new DefaultSelenium("localhost", 4444, **'*chrome'**, 'http://amazon.com');
or
new DefaultSelenium("localhost", 4444, **'Firefox on Windows'**, 'http://amazon.com');