What exactly do you need help with here?
I will say this... This doesn't look right:
$result = mysql_query ("SELECT * from news where $area = 1");
My guess is that it should look more like this:
$result = mysql_query ("SELECT * FROM news WHERE area = '".$_POST['area']."'");