Your JSON data is invalid. You can't have multiple instances of the same property in an object.
You probably want:
[ 
    {
        "name": "Country1"
    },
    {
        "name": "Country1"
    },
    {
        "name": "Country1"
    }
]
Or even:
[ "Country1", "Country1", "Country1" ]
You can loop over it as per the example for for in the spec.
                  David Dorward
                   2009-11-17 10:31:07