'Change' event for radiobuttons
//on change - the event is fired for each radio button
//on toggle - the radio button that is being activated
$('input:radio[name="emailLang"]').on('toggle', function(){
var self = $(this);
console.log(self.val());
});