$( function()
{


	$( ".register-form select" ).change( function()
	{
		$(this).parent().find( "a" ).attr( "href", baseurl+"register/"+$(this).val() )
	}).change()

	$( ".bluebox" ).each( function()
	{
		if( $(this).find("h2").length == 0 ) $(this).addClass("noh2" );
	})

})

