Try this:
=IF(OR(C9>1200,D9>1200),E9*E$4,E9*E$3)
It will determine if C9 or D9 is greater than 1200. E9 will be multiplied by E4 if either (or both) of those integers is more than 1200. It will multiply E9 by E3 if neither of them is higher than 1200.
This is for cell F9, but it will still function if you slide it down to a lower row.