Right. I'll demonstrate the method on a simpler example.
In the diagram below, basically you start at point "A" and you count the different ways to get to each of the next possible intersections. Obviously, you can either go down, or right.
Going down, there is only 1 possible way of getting to that intersection, so we write "1" there.
Going across, there is also only 1 possible way to get to the first intersection, so we write 1 there as well.
With the rule stating that you can only travel right or downwards, it is fairly obvious that there is only one possible way of getting to any of the intersections on the left-hand edge. We can write "1" by each of these. By the same logic, we can write "1" at each intersection across the top.
Now for the internal intersections. This is a simple addition problem: At each intersection, the number of ways to get to it is the sum of the number of ways to get to the intersection on the left , and the number of ways to get to the intersection above it.
There is therefore two possible ways to get to the center intersection, three ways to get to either the bottom-middle or Right-middle intersection. These can be summed to show six ways of getting to "B".