Add a field to your table called TaxRate. Set it's default value to 17. Add this field to your form.
When a new record is added, the default value will be displayed. Then the calculated field would be:
=([Original cost without tax] * ([TaxRate]/100))+[Original cost without tax]
This way if the tax rate changes, or you ship to a state or country that has a different rate, it will be easier to change.
Dave