﻿$(document).ready(function(){
    $("#howMuch input[@type=text]").focus(function(){
        $(this).attr('value','');
    });    
    $("#canolaAcres input[@type=text]").focus(function(){
        $(this).attr('value','');
    });    
});