From Honduras Los Robbins revolutionized the Central America music scene with their mix of rocksteady, ballad, flamenco and surf music.
/*
function set(variable){ return variable; }
var mis_categorias = set([27, 15]);
var mis_labels = set([2]);
var mis_generos = set([10, 6]);
$('[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();});*/