если иномарки вводяться только на латинице, то можно так
<html>
<head>
<meta charset="windows-1251" />
</head>
<body>
<input id="brand" />
<input id="country" />
<button id="b">купить</button>
<script>
b.onclick=function(){
/^\w+$/.test(brand.value)&&/^россия$/i.test(country.value) ? alert("no") : alert("ok")
}
</script>
</body>
</html>
Иначе, придется составлять таблицу.