SELECT Employee, DATEDIFF("m",StartDate,NOW())*1.6 FROM table
There's only one problem with this, though:
Someone entering on 1-Jan would have the same amount of days as someone entering on 31-Jan. DATEDIFF only checks different months without checking the days. Anyway, this is a good start, and probably another expert can improve it.