It is known that
$$ \sum_{n=0}^{\infty} \binom{z+n-1}{n}(-1)^{n}x^{n} = (1+x)^{-z}, $$
but what about sums of the form $$ \sum_{n=t}^{\infty} \binom{z+n-1}{n}(-1)^{n}x^{n}? $$
Is there an explicit formula for them? Notice that shifting the iterator by applying $n=n+t$ will not help because then one will have $n+t$ as the second binomial argument which does not let one apply the sum formula from above. Furthermore, notice that $$ \binom{z+n-1+t}{n+t} = \binom{z+n-1}{n}\frac{z+n-1+1}{n+1}\frac{z+n-1+2}{n+2}...\frac{z+n-1+t}{n+t}. $$ This might be useful but I do not see how to apply it if it is so.
This sum is hypergeometric, so there's actually a computer program which will either find you a closed form in terms of (generalized) hypergeometric functions or will tell you no such closed form exists. See the book A=B (which is freely available at that link) for a description of this and similar algorithms.
The computer algebra system sage has this algorithm built in, so we can ask if a closed form exists. The answer is "yes", but it's nowhere near as nice as you might like. I suspect there's nothing better, though.
In latex, we see your sum is
$$(-x)^{t} {z + t - 1 \choose t} \,_2F_1\left(\begin{matrix} 1,t + z \\ t + 1 \end{matrix} ; -x \right)$$
where ${}_2 F_1$ is probably the best studied hypergeometric function (indeed, it's the original hypergometric function that the others are generalizing, and has been studied since at least Gauss). See here and here for starting points regarding the known identities, asymptotics, etc. for ${}_2 F_1$.
I hope this helps ^_^