Go to the properties of the text box, open up the Visibility area and on the first item (Hidden) create an expression such as:
=IIF(Fields!Country.Value="USA",TRUE,FALSE)
The above will hide the text box if the country is USA for this row, so a return value of TRUE means hide it, and FALSE means show it.
Good luck,