var FormTicks = 
{
    init: function()
    {
        
        $('#usedcontactus_askAQuestion').change(
            function()
            {
                FormTicks.addText("#usedcontactus_askAQuestion", "I'd like to ask a question:\n");
            }
        );
        
        $('#usedcontactus_moreInfo').change(
            function()
            {
                FormTicks.addText("#usedcontactus_moreInfo", "Please send me more info on this model:\n");
            }
        );
        
        $('#usedcontactus_requestACallBack').change(
            function()
            {
                FormTicks.addText("#usedcontactus_requestACallBack", "Please call me back.\nMy telephone number is ---- ------:\nThe most convenient time to call is between ---- and ----.\n");
            }
        );
        
        $('#usedcontactus_makeAnOffer').change(
            function()
            {
                FormTicks.addText("#usedcontactus_makeAnOffer", "I'd like to make an offer of:\n");
            }
        );
        
        $('#usedcontactus_requestADemo').change(
            function()
            {
                FormTicks.addText("#usedcontactus_requestADemo", "I'd like a demonstration:\n");
            }
        );                                
            
    },
    
    addText: function(someTick, someText)
    {
        if ($(someTick + ':checked').val())
        {
            var myString = $('#usedcontactus_Message').text() + someText;
            $('#usedcontactus_Message').text(myString);
        }
    }            
}


$(document).ready(function()
{ 
  FormTicks.init();
});
