Answer:
decTotal = decSubtotal + GetSalesTax(decSubtotal)
Explanation:
First the tax is calculated using the GetSalesTax function and passing in the subTotal as a parameter to compute the tax:
GetSalesTax(decSubtotal).
Then the return value of the function is added to subTotal and then assigned to the variable decTotal.