$(function() {

  $('#shoplist a').click(function() {
    var country = $('#shoplist .country').val();
    var region  = $('#shoplist .region').val();
    var city    = $('#shoplist .city').val();
    
    $('.shop').hide();
    
    $('.shop').each(function() {
      if( ($(this).children('.country').text() == country || country == 'null') 
       && ($(this).children('.region').text()  == region  || region  == 'null') 
       && ($(this).children('.city').text()    == city    || city    == 'null')
      ) $(this).show();
    });
  });

});