$(document).ready(function()
{ 
  //toggle the componenets with class dropdownheading
  $("#weightupdate").click(function()
  {
	$("#showform").slideToggle(200);
  });
});