$j = jQuery.noConflict();

$j(document).ready(function() {
	$j('#short').change(function() {
		  window.location = $j(this).val();
	});
});

