Stai aggiungendo '
al $countryId
valore. Poiché è previsto un numero intero, non è necessario utilizzarli. Prova questo:
$countryId = isset($_POST['country']) ? (int)$_POST['country'] : 0;
$inserSQL = "INSERT INTO Table1(country_id) VALUES($countryId)";
$Result1 = mysql_query($inserSQL ) or die(mysql_error());