function send_mail() {
	var cr = "%0D%0A";
	html = document.mail_form.cliChose.value + " " + cr;
	html += " [price] = " + document.mail_form.cliPrice.value + " " + cr + cr;
	
	html += " [c o m m e n t] = " + document.mail_form.comment.value;
	
   window.location = "mailto:firma.bg@abv.bg?subject=SALES&body=" + html;
}