function validate_change_password()
{
  if($("#password").val()!= $("#confirm_password").val()) {
    $("#error_msg").html("Password and Confirm Password must be the same.");
    return false;
  }

  return true;

}


