I need help with contact form

Hi to all,

I’m new here and I need help for my contact form. My friend from Serbia recomended Kirupa Forum and here I am.

Problem is when I receive non latin (Cyrillic Russian) message from my contact form I receive coded symbols like this:

[FONT=Consolas]чсиьтбджгнгенуе[/FONT]

Then I must go to decode online web site to read message. I need clearly visible text in Russian from contact form.

How can I repair this? I tried everything I know and no changes. (All encoding I’ve tried like windows-1251…etc)

Here is the code:

HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<html>
<body>



<!--Contact Form-->
<div id="main">
<p id="tip">    
&#1053;&#1077;&#1086;&#1073;&#1093;&#1086;&#1076;&#1080;&#1084;&#1086; &#1079;&#1072;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1100; &#1074;&#1089;&#1077; &#1087;&#1086;&#1083;&#1103;!
</p>
<div id="feedback">
<p class="error wrong_name">&#1042;&#1074;&#1077;&#1076;&#1080;&#1090;&#1077; &#1074;&#1072;&#1096;&#1077; &#1080;&#1084;&#1103;!</p>
<p class="error wrong_email">&#1053;&#1077;&#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1099;&#1081; &#1101;&#1083;&#1077;&#1082;&#1090;&#1088;&#1086;&#1085;&#1085;&#1086;&#1081; &#1087;&#1086;&#1095;&#1090;&#1099;!</p>
<p class="error wrong_message">&#1055;&#1086;&#1078;&#1072;&#1083;&#1091;&#1081;&#1089;&#1090;&#1072;, &#1074;&#1074;&#1077;&#1076;&#1080;&#1090;&#1077; &#1074;&#1072;&#1096;&#1077; &#1089;&#1086;&#1086;&#1073;&#1097;&#1077;&#1085;&#1080;&#1077;!</p>
</div>
<p id="success">&#1057;&#1087;&#1072;&#1089;&#1080;&#1073;&#1086; &#1079;&#1072; &#1074;&#1072;&#1096;&#1077; &#1076;&#1086;&#1074;&#1077;&#1088;&#1080;&#1077;!</p>
<form action="php/sendemail.php" id="contact_us" method="post">
<p class="label_name">&#1048;&#1084;&#1103;</p>
<p class="input_form"><input class="input" type="text" name="Name" /></p>
<p class="label_name">&#1069;&#1083;&#1077;&#1082;&#1090;&#1088;&#1086;&#1085;&#1085;&#1072;&#1103; &#1087;&#1086;&#1095;&#1090;&#1072;</p>

<p class="input_form"><input class="input" type="text" name="Email" /></p>
<p class="label_name">C&#1086;&#1086;&#1073;&#1097;&#1077;&#1085;&#1080;&#1077;</p>
<p class="input_form" id="textarea"><textarea class="message" name="Message" rows="5" cols="4" id="message_input"></textarea></p>
<p id="submit"><input type="submit" value="&#1054;&#1090;&#1087;&#1088;&#1072;&#1074;&#1080;&#1090;&#1100;!" name="submitButton" class="button" /></p>
</form>
</div> 


<!--End Contact Form-->

</body>
</html>

PHP:

<?php

$mailTo = 'mymail@mail.com';
$name = htmlspecialchars($_POST['Name']);
$mailFrom = htmlspecialchars($_POST['Email']);
$subject = 'Message from my web site!';
$message_text = htmlspecialchars($_POST['Message']);

$message =  'From: '.$name.'; Email: '.$mailFrom.' ; Message: '.$message_text;

mail($mailTo, $subject, $message);
?>

Thanks in advance!