Use an accumulator for storing the answer - this will have the effect of creating the list in reverse (there's no need to use append!) and produce a tail-recursive solution. Because this looks like homework I'll give you some hints so you can fill-in the blanks:
(define (odd-reverse lst acc)
(cond ((null? lst) ; if the list is null
<???>) ; return the empty list
(<???> ; if there's only one element left in the list
(cons <???> acc)) ; cons that element with the accumulator
(else ; otherwise advance the recursion
(odd-reverse <???> ; advance two positions over the list
(cons <???> acc))))) ; cons current element with the acc
Call it like this:
(odd-reverse '(A B C D G) '())
=> '(G C A)
If the procedure must receive only one parameter (the list), it's trivial to write another procedure that calls odd-reverse always passing a '() as the initial value for the accumulator.