ser1ko,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css"> .load{
color: #FF00FF;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(function() {
var city// = ymaps.geolocation.country;
if(city == 'Россия'){
jQuery("#load-table").html('<div class="load">Извините, файл недоступен для скачивания в России</div>');
} else {
jQuery("#load-table").html('<div class="load">ссылка на скачивание</div>');
}
});
</script>
</head>
<body>
<div id="load-table"></div>
</body>
</html>