$(document).ready(function() {
var options = {
target: '#magerror',
success: showResponse
};
$('#magOne').submit(function() {
$(this).ajaxSubmit(options);
if(responseText.length > 400)
{
return true;
} else {return false; }
});
});
function showResponse(responseText, statusText){
}