Maybe for problems like this it's worth trying to prove a slightly easier version and then hope it helps finding a general solution.
For example you could first try to prove that
$$\sum_{s=0}^{N-n}{N-s-1\choose n-1}={N\choose n}$$
And then make some algebraic manipulation. The final answer should be $N\choose n+1$.
There is also a combinatorial interpretation. It's easier to spot once we know the actual answer.
Consider $N$ objects, say $\{x_1,x_2,...,x_N\}$. Then $N\choose {n+1}$ is the number of ways we can pick $n+1$ objects from this set.
This is another way to count it:
We pick a set of $n+1$ objects the following way; first we choose the object with the second largest index; this must be one of $x_n,...,x_{N-1}$ since there is exactly one object with larger index and $n-1$ objects with lower index.
Suppose we have picked $x_{N-s}$ with $n\leq N-s\leq N-1$, ie $1\leq s\leq N-n$.
Now we pick the element with largest index. We have $s$ choices: $x_{N-s+1},...,x_N$.
Finally, we choose the remaining $n-1$ objects; these must lie in the set $\{x_1,x_2,...x_{N-s-1}\}$, hence we have ${N-s-1}\choose {n-1}$ choices.
Thus if our first pick is $x_{N-s}$, we have $s{{N-s-1}\choose {n-1}}$ ways to pick the remaining $n$ objects. If we sum over $s$ we get the number of ways we can pick $n+1$ objects from a set of $N$ objects:
$$\sum_{s=1}^{N-n}s{{N-s-1}\choose {n-1}}={N\choose{n+1}}$$