Display posts if specific country

Take a look at freegeoip.net. I used it like this with jquery, for example.

$.get( "http://freegeoip.net/json/", 'jsonp', function( data ) {
  country = data['country_code'];
  if( country == 'US' ){
    // show your content
  };
});