xxxxxxxxxx
$(function() { // Makes sure the code contained doesn't run until
// all the DOM elements have loaded
$('#colortoggler').change(function(){
if ($(this).val() === 'option1'){
$('.colors').hide();
}else{
$('.colors').show();
}
});
});