Salve ragazzi ho un problema con questo controllo:
	
	
	
		
Qualcuno sa dirmi perche non va ??? Grazie !
				
			
		PHP:
	
		$('select[name="mn-sz"]').change(function(){
		
		$('select[name="mn-sz"] option:selected').each(function(){
		
			min = $(this).val();
			
			max = $('select[name="mx-sz"]').val();
			if( min != '' && max != '' && min > max ){
				
				$('select[name="mx-sz"] option').removeAttr( 'selected' );
				
				$('select[name="mx-sz"] option[value="' + min + '"]').attr( 'selected', 'selected' );
			
			}
			
		});
	});