The greedy choice property says: a globally optimal solution can be built by making locally optimal choices. More precisely: there exists an optimal solution that includes the greedy choice. You do not have to consider all possibilities. Just pick the locally best option and continue.
For example, in activity selection, always picking the activity that ends earliest is a greedy choice. You can prove that some optimal solution includes this choice. That is the greedy choice property in action.