First thing's first: firm=="ford" is not correct. Strings (like all objects) should be compared using the .equals() method, not double equals. So, instead, you want: firm.equals("ford")

Change...