<script type="text/javascript">
function checkValue(){
var total = document.getElementById('total').value;
var input = document.getElementById('input1').value;
var result = total - input ;
if(result < 0){
alert('ใส่่เงินเกิน จำนวน ครับ');
}
}
</script>