/**
 * Sponsoring
 *
 * @author Andreas Nebiker
 */

 
$(document).ready(function()
{
	$('#sponsoring select').change(function()
	{
		$('#sponsoring').submit();
		/*if (console)
		{
			console.log('Changed to: ' + this.value);
		}*/
	});
});