$(document).ready(function() {
	var current_val_language = '1';
	
	$('#id_region').click(function() {
		current_val_language = $(this).val();
	});
	
    $('#id_region').change(function() {
        update_analytics($('form#language_chooser').attr('action'), $(this).val());
	    if ($(this).val() == '10'){
			$(this).val(current_val_language);
			 window.open('http://www.theinfoboom.com.cn/');
		}else{
			$('#language_chooser').trigger('submit');
		}
		
    });
});

