Funky,
You just omit the All statements.
SELECT * FROM tableName where firtName = 'Suzy' AND Country = 'USA'
will do unless All is actually an entry in the field in the database. If you by all mean 'all values', this is obtained by not setting up any selectors for that field.
Martin