$(document).ready(function(){
		
		//Hide div w/id extra
	   $("#budget1").css("display","none");
     $("#budget2").css("display","none");

		// Add onclick handler to checkbox w/id checkme
	   $("#monthly").click(function(){
		
		// If checked
		if ($("#monthly").is(":checked"))
		{
			//show the hidden div
			$("#budget1").show("fast");
		}
		else
		{	   
			//otherwise, hide it 
			$("#budget1").hide("fast");
		}
	  });
    
    
    // Add onclick handler to checkbox w/id checkme
	   $("#onetime").click(function(){
		
		// If checked
		if ($("#onetime").is(":checked"))
		{
			//show the hidden div
			$("#budget2").show("fast");
		}
		else
		{	   
			//otherwise, hide it 
			$("#budget2").hide("fast");
		}
	  });   

});