/*
         ___                         _____       __
        /  /\        ________       /    /\     / /\
(-----//  /  \//----/_____/__\\--) /____/  \___/_/ //--------------------------)
      /  /   /      \     | //     \    \  /    /\/    this code was created by
     /__/   /        \    |///-----\\____\/____/  \                       sigea
(---\\  \  /   (-----\\___|/        /    /\    \  /       
      \__\/                        /____/ /\____\/            __       sigea.ch
                                   \____\/  \  /             /\_\--------------)
                                         \___\//-------------\/_/  

*/

function prepareKantonKlubChooser(){
	if(!document.getElementById('chooser')) return false;
	document.getElementById('chooser').getElementsByTagName('select')[0].onchange=function(){
		if(this.value>-9)
			document.getElementById('chooser').getElementsByTagName('form')[0].submit();
	}
	return true;
}
addLoadEvent(prepareKantonKlubChooser);