Spanish beat/soul band Los Bravos, the most international Spanish act of the 60s. Los Bravos came from Madrid and 'Black Is Black' is remembered as the peak of 60s Spanish pop.
/*
function set(variable){ return variable; }
var mis_categorias = set([32, 1, 2, 4, 27]);
var mis_labels = set([3, 4]);
var mis_generos = set([10, 11]);
$('[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();});*/