Yes, you're going to use the "OR" clause in mySQL, however, be careful you aren't left with a query that resembles something like this :
$query = "SELECT * from jobs where sector='IT' OR sector='Accounts' OR";
In that case, it's an invalid query. Just do some checking for unused clauses.
For your information, you can alternatively use || instead of OR.