$(function(){
	$('#supportform').bind('submit',function(){
		$('.error').hide();
		if($('#type').val()==simptotrad(32)+'...'){
			$('#selecterror').show();
			return false;
		}
		if($('#content').val()==''||$('#content').val()==null){
			$('#content').val(simptotrad(33));
			return false;
		}
		if(!checkemail($('#useremail').val())){
			$('#emailerror').show();
			return false;
		}
	});
})
