Word has an option File > Advanced > Print > Draft Quality, which holds for the Word session. If you want always to print draft quality, add a macro to your normal template to switch it on each time you start Word
Code:
Sub AutoExec()
Options.PrintDraft = True
End Sub