function signs() {
var start = 1901, birthyear = date=document.zodiac.date.value, month=document.zodiac.month.selectedIndex;
with (document.zodiac.sign){
if (month == 1 && date >=20 || month == 2 && date <=18) {value = "Хумх";}
if (month == 1 && date > 31) {value = "Сар өдрөө шалгана уу";}
if (month == 2 && date >=19 || month == 3 && date <=20) {value = "Загас";}
if (month == 2 && date > 29) {value = "Сар өдрөө шалгана уу";}
if (month == 3 && date >=21 || month == 4 && date <=19) {value = "Хонь";}
if (month == 3 && date > 31) {value = "Сар өдрөө шалгана уу";}
if (month == 4 && date >=20 || month == 5 && date <=20) {value = "Үхэр";}
if (month == 4 && date > 30) {value = "Сар өдрөө шалгана уу";}
if (month == 5 && date >=21 || month == 6 && date <=21) {value = "Ихэр";}
if (month == 5 && date > 31) {value = "Сар өдрөө шалгана уу";}
if (month == 6 && date >=22 || month == 7 && date <=22) {value = "Мэлхий";}
if (month == 6 && date > 30) {value = "Сар өдрөө шалгана уу";}
if (month == 7 && date >=23 || month == 8 && date <=22) {value = "Арслан";}
if (month == 7 && date > 31) {value = "Сар өдрөө шалгана уу";}
if (month == 8 && date >=23 || month == 9 && date <=22) {value = "Охин";}
if (month == 8 && date > 31) {value = "Сар өдрөө шалгана уу";}
if (month == 9 && date >=23 || month == 10 && date <=22) {value = "Жинлүүр";}
if (month == 9 && date > 30) {value = "Сар өдрөө шалгана уу";}
if (month == 10 && date >=23 || month == 11 && date <=21) {value = "Хилэнц";}
if (month == 10 && date > 31) {value = "Сар өдрөө шалгана уу";}
if (month == 11 && date >=22 || month == 12 && date <=21) {value = "Нум";}
if (month == 11 && date > 30) {value = "Сар өдрөө шалгана уу";}
if (month == 12 && date >=22 || month == 1 && date <=19) {value = "Матар";}
if (month == 12 && date > 31) {value = "Сар өдрөө шалгана уу";}
}
}