function init_newstype_select() {
    $('#affNewsType select').change(function() {
            window.location=$('#affNewsType select option:selected').attr('rel');
        }
    );
    $('#affNewsType select').change(function() {
            window.location=$('#affNewsType select option:selected').attr('rel');
        }
    );
}

$(document).ready(function() {
  init_newstype_select();
});

