A combinatorial proof for the identity $$\binom{n}{k}\binom{k}{a} = \binom{n}{a}\binom{n-a}{k-a}$$
is the following "committee" argument, which seems the most common.
There are $\binom{n}{k}$ ways to select $k$ from a set of $n$ to go on the committee, and then $\binom{k}{a}$ ways to select $a$ from that committee of $k$ to go on a sub-committee of size $a$. This is equivalent to changing the order of selection to first choosing the sub-committee of $a$ from the set of $n$, then choosing the remaining $k-a$ on the committee from $n-a$ possible.
For anyone familiar with the "block-walking" interpretation of Pascal's triangle, how would you show the same identity with a block-walking argument?
For those not familiar with block-walking, please observe the following without a rigorous argument. There are $\binom{4}{2}$ possible paths to reach the point $(4,2)$ in the triangle below, since every path to $(4,2)$ requires $2$ traversals in the direction right out of $4$ traversals total. As another example, there are $\binom{2}{0}$ paths to reach $(2,0)$. In general,there are $\binom{n}{k}$ ways to reach the point $(n,k$).
An example of a "block-walking" combinatorial argument for Pascal's identity might be as follows. Observe that the count of possible ways to reach a point $(n,k)$ is exactly the sum of the possible ways to reach the two points which lead to it, namely $(n-1,k-1), (n-1,k)$. To say this algebraically, $\binom{n-1}{k-1} + \binom{n-1}{k} = \binom{n}{k} $.


We are going to look at routes from the top of the triangle with length $n$ and $k$ steps to the left (and $n-k$ to the right). Also, assume there are $a$ 'special' steps to the left. (The set of special steps is a subset of the set of all steps to the left.) We are going to calculate the number of routes in two ways.
First, we just look at all routes without considering the special steps. There are $\binom nk$ such routes. For each route we have to select $a$ out of $k$ left steps to be special. We can do this in $\binom ka$ ways for each route, so altogether, we get $\binom nk\binom ka$.
Now, suppose we first select $a$ out of $n$ steps to be special steps (to the left). This gives $\binom na$ possibilities (from the definition of the binomial). Now, from the remaining $n-a$ steps, we have to select $k-a$ steps to the left: $\binom {n-a}{k-a}$ possibilities.
Together, we get the following equality: $$ \binom nk\binom ka=\binom na\binom{n-a}{k-a} $$
(does anybody know how to make all binomials the same size?)