With only six singles released between 1965 and 1966, and from an apparently remote place such as Lima, Peru, Los Saicos created a raw, wild and visceral sound, the Southern Hemisphere equivalent of the garage rock that was coming out of the US North West at the same time. Theirs is the same DNA shared by The Sonics, Rocket From The Tombs, The Cramps and Black Lips.
/*
function set(variable){ return variable; }
var mis_categorias = set([1, 2, 4, 24, 30]);
var mis_labels = set([1, 3]);
var mis_generos = set([4, 6, 7]);
$('[name=genres]').each(function(){ $(this).parent().hide();});
mis_generos.forEach(function (e){$('[name=genres][value='+e+']').parent().show();});
$('[name=categories]').each(function(){ $(this).parent().hide();});
mis_categorias.forEach(function (e){$('[name=categories][value='+e+']').parent().show();});*/